home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -in_the_mag- / basics / amos / intuiextend20b.lha / distribution / exemples / Decrypt_Encrypt.asc < prev    next >
Text File  |  1980-03-04  |  598b  |  24 lines

  1. '**************************************
  2. '                                     *
  3. '     IntuiExtend.Lib 2.0/@1995-98    *
  4. '                                     *
  5. '          by CIERP Philippe.         *
  6. '                                     *
  7. '          from AMIGAzette 83         *
  8. '                                     *
  9. '**************************************
  10. '
  11. ' Command
  12. '  -Wb Encrypt 
  13. '  -Wb Decrypt 
  14. '
  15. A$="Philippe"
  16. Text 10,10,"Texte original:"+A$
  17. 'Encryptage du texte 
  18. A$=Wb Encrypt(A$)
  19. Text 10,20,"Texte encrypté:"+A$
  20. '
  21. 'Décryptage du texte 
  22. A$=Wb Decrypt(A$)
  23. Text 10,30,"Texte décrypté:"+A$
  24.